home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
IRIX 6.2 Development Libraries
/
SGI IRIX 6.2 Development Libraries.iso
/
dist
/
complib.idb
/
usr
/
share
/
catman
/
p_man
/
cat3
/
complib
/
DSPSL.z
/
DSPSL
Wrap
Text File
|
1996-03-14
|
2KB
|
67 lines
DDDDSSSSPPPPSSSSLLLL((((3333FFFF)))) DDDDSSSSPPPPSSSSLLLL((((3333FFFF))))
NNNNAAAAMMMMEEEE
DSPSL - DSISL solves the double precision symmetric system A * X = B
using the factors computed by DSPFA.
SSSSYYYYNNNNOOOOPPPPSSSSYYYYSSSS
SUBROUTINE DSPSL(AP,N,KPVT,B)
DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
On Entry
AAAAPPPP DOUBLE PRECISION(N*(N+1)/2)
the output from DSPFA.
NNNN INTEGER
the order of the matrix A .
KKKKPPPPVVVVTTTT INTEGER(N)
the pivot vector from DSPFA.
BBBB DOUBLE PRECISION(N)
the right hand side vector. On Return
BBBB the solution vector X . Error Condition
AAAA division by zero may occur if DSPCO has set RCOND .EQ. 0.0 or DSPFA
has set INFO .NE. 0 . To compute INVERSE(A) * C where C is a matrix
with P columns
CALL DSPFA(AP,N,KPVT,INFO)
IF (INFO .NE. 0) GO TO ...
DO 10 J = 1, P
CALL DSPSL(AP,N,KPVT,C(1,J)) 10 CONTINUE LINPACK. This version dated
08/14/78 . James Bunch, Univ. Calif. San Diego, Argonne Nat. Lab.
Subroutines and Functions BLAS DAXPY,DDOT Fortran IABS
PPPPaaaaggggeeee 1111